home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
util1
/
jukebx21.lha
/
JukeBox_2.1
/
bwd.jb
< prev
next >
Wrap
Text File
|
1993-01-29
|
249b
|
16 lines
/* skip back to previous track */
/* (c) copyright 1992,93 by F.J. Reichert */
options results;
current track;
if result ~= 0 then do;
toset = result - 1;
if toset > 0 then do
set track toset;
end;
else do
set track 1;
end;
end;
exit(0);